| 123456789101112131415161718 |
- import PlaceholderPage from "@/components/placeholders/PlaceholderPage";
- /**
- * /:branch/:year/:month
- *
- * Next.js 15+ treats `params` as an async value (Promise) for dynamic routes.
- */
- export default async function BranchYearMonthPage({ params }) {
- const resolvedParams = await params;
- return (
- <PlaceholderPage
- title="Month"
- description="Month placeholder (future: days overview / explorer drill-down)."
- params={resolvedParams}
- />
- );
- }
|